home *** CD-ROM | disk | FTP | other *** search
- ; direct line to host, no dialing required
- ;
- ; $NCDOr:
- ;
- ; Wake up the host with a carriage return (\r)
- ;
- transmit "\r"
- ;
- ; Wait for "login" message
- ;
- waitfor "gin:" 60
- ;
- ; Transmit user name (\u)
- ;
- transmit "\u\r"
- ;
- ; Wait for "password" message
- ;
- waitfor "word" 60
- ;
- ; Transmit password (\p)
- ;
- transmit "\p\r"
-